home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / STREAM13.ARJ / OVR1.PAS < prev    next >
Pascal/Delphi Source File  |  1992-03-31  |  178b  |  15 lines

  1. unit ovr1;
  2. {$O+,F+}
  3.  
  4. interface
  5.  
  6. procedure proc1;
  7.  
  8. implementation
  9.  
  10. procedure proc1;
  11. begin
  12.   writeln('This line is being printed by proc1 in unit ovr1.');
  13. end;
  14.  
  15. end.